home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / aprs30_2.zip / README.PLT < prev    next >
Text File  |  1993-10-08  |  4KB  |  119 lines

  1.                        README.PLT
  2.               written by Ken Swaggart W7KKE
  3.  
  4. The QBASIC program PLOTTER.BAS is written for a CALCOMP 4000
  5. plotter, but can probably be modified for other plotter types.
  6. The baud rate and parity is set as a veriably in the program. It
  7. is currently written to have the plotter attached to COM 2, with
  8. the plotter sending data at 9600 baud, even parity.
  9.  
  10.   1. Place a map, or map section, on the plotter. Must be
  11. Mercator projection with lat/long lines parallel with edge of
  12. plotter. Note that the active plotting surface starts about 1
  13. inch in from the edges of the plotter.
  14.  
  15.   2. Choose a lat/long in the vicinity of the upper left map
  16. corner and the lower right corner. These points are used to
  17. calibrate the plotter surface to the map.
  18.  
  19.   3. Run the program. Enter the initial lat and longs as
  20. prompted. Those which require degrees and minutes are entered as
  21. DD,MM and the MM can be MM.MM of course. Note that a comma
  22. separates the DD and MMs.
  23.  
  24.   4. Each map segment prompts for a segment name to ease in any
  25. debugging. Then just point to each position you wish to digitize.
  26. The program beeps and displays the converted data on the screen.
  27. My plotter occasionally hiccups and puts in an odd x/y. I prune
  28. these out with a text editor when I've finished.
  29.  
  30.   5. After all the points for one map segment have been
  31. digitized, press "F1" and tap the plotting surface to end that
  32. segments. You will be prompted for another segment, map name
  33. labels, or to exit the program.
  34.  
  35.   6. After finishing all your map lines, choose the map label
  36. option on the menu and follow the prompts. Remember the names are
  37. right justified on APRS when you point to where you want the name
  38. to appear.
  39.  
  40.   7. When finished with the labels, press "F1" and tap the
  41. plotter surface with the pen.
  42.  
  43.   8. Exit the program after naming you file with "name.MAP". Use
  44. MAPFIX.BAS to check your results and use a text editor to smooth
  45. up any map intersections.  
  46.  
  47.   9. To use the map in APRS, add the map to the APRS directory
  48. and the map name, center decimal coordinates, and range to be
  49. displayed, to the MAPLIST.MAP file. You will probably need to
  50. delete an existing map name to keep from exceeding the number of
  51. maps allowed. Remember to place the new map in the proper order
  52. (more important maps at the end) to get the right map to display
  53. when you have overlapping maps. The more detailed map of interest
  54. should be at the end of the file.
  55.  
  56.  
  57. THE FOLLOWING DESCRIBES THE CALCOMP Model 4110 Plotter in detail:
  58. ------------------------------------------------------------------
  59.  
  60. Plotting surface 12"x12" active, plastic surface is 12 3/4 x
  61.  12 3/4.
  62.  
  63. Data is serial ASCII, even parity, with 4 characters of x
  64. position and 5 characters of Y. Think 1st Y character is pen
  65. status.
  66.  
  67. Power input is pin 24 +12vdc at 290-300 ma. Pin 25 is power
  68. return
  69.  
  70. Data Ranges:
  71.   X: 0 = left  4000 = right
  72.   y: 0 = bottom  4000 = top
  73.  
  74. Pen status:
  75. 0 = point mode
  76. 1 = run mode, pen down
  77. 9 = run mode, pen up
  78.  
  79. There is an "A/B" switch on back of my plotter next to D25 plug.
  80. I run in "B" which only sends a posit when pen is depressed on
  81. surface (point mode).
  82.  
  83. Pin connections:
  84. 1  NC
  85. 2  +/- 15 v RS-232 data output from plotter.
  86. 3  + 5v from board (probably for some original interface device)
  87. 4  "             "                      "
  88. 5  0/+5v TTL data output
  89. 6  "                "
  90. 7 Ground (data return)
  91. 8   |
  92. 9   |- Tied together in various combinations to select baud rate.
  93. 10  |
  94. 11  |
  95. 12 - 23 Unknown. Appear to be open.
  96. 24  +12 vdc  power input
  97. 25  ground
  98.  
  99.  
  100. Baud rate programming
  101. Baud Rate               PIN          (X=connection to ground)
  102.                 8     9     10     11
  103.   110         
  104.   2400         X
  105.   1200                X
  106.    150         X      X
  107.    300                      X
  108.    200?        X            X
  109.   4800               X      X
  110.  OFF           X     X      X
  111.    150                            X
  112.    600         X                  X
  113.     45?        X     X            X
  114.  2400                       X     X
  115.    135?        X            X     X
  116.  9600                X      X     X  *QBASIC program rate
  117.    OFF         X     X      X     X
  118.  
  119.